home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Software / TemaCD / RCEdit / RCEdit.CAB / Clock - Form Box.js < prev    next >
Text File  |  1996-09-30  |  860b  |  31 lines

  1. //Clocl Real Time Update
  2.  
  3.     var timerID = null;
  4.     var timerRunning = false;
  5.     var id,pause=0,position=0;
  6.  
  7.     function stopclock(){
  8.         if(timerRunning)
  9.                 clearTimeout(timerID);
  10.         timerRunning = false;
  11.     }
  12.  
  13.     function showtime() {
  14.         var now = new Date();
  15.         var hours = now.getHours();
  16.         var minutes = now.getMinutes();
  17.         var seconds = now.getSeconds()
  18.         var timeValue = "" + ((hours >12) ? hours -12 :hours)
  19.         timeValue += ((minutes < 10) ? ":0" : ":") + minutes
  20.         timeValue += ((seconds < 10) ? ":0" : ":") + seconds
  21.         timeValue += (hours >= 12) ? " P.M." : " A.M."
  22.         document.time.face.value = timeValue;
  23.         timerID = setTimeout("showtime()",1000);
  24.         timerRunning = true;
  25.     }
  26.  
  27.     function startclock() {
  28.             stopclock();
  29.                showtime();
  30.     }
  31.